home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / lisp / eulisp / mpfeel.lha / MPFeel / Modules / bvf.em < prev    next >
Lisp/Scheme  |  1992-10-06  |  600b  |  28 lines

  1. ;; Eulisp Module
  2. ;; Author: pab
  3. ;; File: bvf.em
  4. ;; Date: Fri May 22 11:51:38 1992
  5. ;;
  6. ;; Project:
  7. ;; Description: 
  8. ;;  Internals of bytevector functions
  9.  
  10. (defmodule bvf
  11.   (standard0
  12.    list-fns
  13.    
  14.    bci
  15.    )
  16.   ()
  17.   
  18.   (defun bytefunction-env (x) (error "Rats" clock-tick))
  19.   (defun bytefunction-offset (x) (error "Rats" clock-tick))
  20.   (defun bytefunction-codenum (x) (error "Rats" clock-tick))
  21.   (defun bytefunction-nargs (x) (error "Rats" clock-tick))
  22.  
  23.   (export bytefunction-env bytefunction-offset  bytefunction-codenum bytefunction-nargs
  24.       bytefunction bytefunction-class)
  25.  
  26.   ;; end module
  27.   )
  28.